.simple-store {
  min-height: 100vh;
  padding: 14px;
  background: #f5f6f8;
}

.simple-product {
  width: min(100%, 680px);
  margin: 0 auto;
}

/* Keep the storefront's mobile-first composition on desktop browsers too. */
@media (min-width: 640px) {
  .simple-store {
    width: min(100%, 568px);
    margin: 0 auto;
    padding: 16px 12px 42px;
  }

  .simple-product {
    width: 100%;
  }
}

.simple-store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid #2b3a53;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(19, 31, 51, .94), rgba(10, 17, 30, .9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 10px 24px rgba(0, 0, 0, .2);
}

.simple-store-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #f8fafc;
  font-size: .96rem;
  font-weight: 900;
  letter-spacing: -.035em;
  text-decoration: none;
}

.simple-store-brand strong { color: #ff6a35; }

.simple-store-mark {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ff713b, #e54411);
  color: #fff;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: inset 0 -3px 0 rgba(102, 21, 0, .25), 0 5px 12px rgba(255, 90, 31, .22);
}

.simple-store-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9fb2ca;
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
}

.simple-store-secure i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24d07c;
  box-shadow: 0 0 0 3px rgba(36, 208, 124, .14);
}

.simple-image-headline {
  margin: 2px 4px 14px;
  color: #101828;
  font-family: var(--font);
  font-size: clamp(1.35rem, 6.2vw, 2rem);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-align: center;
}

.simple-media {
  overflow: hidden;
  border-radius: 18px;
  background: #101828;
  box-shadow: 0 12px 34px rgba(16, 24, 40, .14);
}

.simple-media img,
.simple-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70svh;
  object-fit: contain;
  background: #101828;
}

.simple-media-empty {
  min-height: 52svh;
  background: #101828;
}

.simple-purchase {
  display: grid;
  gap: 12px;
  padding: 16px 0;
}

.simple-checkout-form { margin: 0; }
.simple-buy:disabled { cursor: not-allowed; opacity: .65; animation: none; }

.simple-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.simple-price strong {
  font-size: clamp(2rem, 10vw, 3.15rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.06em;
}

.simple-price del {
  color: #98a2b3;
  font-weight: 800;
}

.simple-buy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 68px;
  padding: 9px 10px;
  border: 1px solid rgba(107, 255, 182, .34);
  border-radius: 18px;
  background: linear-gradient(110deg, #057347 0%, #0b9d60 42%, #15bf74 62%, #057347 100%);
  background-size: 250% 100%;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(7, 148, 85, .32), inset 0 1px 0 rgba(255, 255, 255, .2);
  animation: buy-gradient 4s linear infinite, buy-pulse 2.2s ease-in-out infinite;
}

.simple-buy-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  grid-column: 2;
  justify-self: center;
  white-space: nowrap;
}

.simple-buy-label b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.simple-buy-price {
  display: inline-flex;
  align-items: center;
  grid-column: 3;
  justify-self: end;
  min-height: 44px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 13px;
  background: linear-gradient(145deg, #ffffff, #e8fff3);
  color: #057347;
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: -.03em;
  box-shadow: 0 5px 14px rgba(0, 54, 30, .2);
}

.simple-price-note {
  margin: -3px 0 1px;
  color: #667085;
  font-size: .73rem;
  font-weight: 700;
  text-align: center;
}

.simple-price-note s {
  margin-right: 4px;
  color: #98a2b3;
}

.simple-buy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  bottom: -80%;
  left: -35%;
  width: 24%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  animation: buy-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}

.simple-buy:hover {
  transform: translateY(-2px) scale(1.01);
}

.simple-buy:active {
  transform: translateY(0) scale(.98);
}

.product-details-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 20px;
  border: 2px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(255, 247, 237, .96)) padding-box,
    linear-gradient(125deg, #ff5a1f, #ffc83d 44%, #315efb 100%) border-box;
  box-shadow:
    0 14px 34px rgba(255, 90, 31, .10),
    0 8px 24px rgba(49, 94, 251, .08);
}

.product-details-tile::before,
.product-details-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.product-details-tile::before {
  width: 150px;
  height: 150px;
  top: -92px;
  right: -72px;
  background: radial-gradient(circle, rgba(49, 94, 251, .20), rgba(49, 94, 251, 0) 70%);
}

.product-details-tile::after {
  width: 135px;
  height: 135px;
  bottom: -88px;
  left: -62px;
  background: radial-gradient(circle, rgba(255, 90, 31, .20), rgba(255, 90, 31, 0) 70%);
}

.product-details-tile h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.product-details-tile h1::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 25px;
  border-radius: 99px;
  background: linear-gradient(180deg, #315efb, #ff5a1f);
  box-shadow: 0 4px 10px rgba(49, 94, 251, .22);
}

.product-details-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #1d2939;
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.55;
}

.product-details-list li {
  position: relative;
  padding-left: 27px;
}

.product-details-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .48em;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #315efb, #ff5a1f);
  box-shadow: 0 0 0 2px rgba(49, 94, 251, .16);
}

.simple-footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: min(100%, 680px);
  margin: 18px auto 0;
  padding: 8px 4px 22px;
  color: #667085;
  font-size: .72rem;
}

.simple-footer a {
  text-underline-offset: 3px;
}

.simple-buy-sheet h2 {
  padding-right: 40px;
  font-size: 1.65rem;
}

.simple-buy-sheet .modal-price {
  justify-content: flex-start;
}

.simple-buy-sheet .modal-price strong {
  font-size: 2.4rem;
}

.site-body .consent-banner {
  left: 50%;
  right: auto;
  width: calc(100% - 28px);
  max-width: 680px;
  transform: translateX(-50%);
}

@keyframes buy-gradient {
  to { background-position: -220% 0; }
}

@keyframes buy-pulse {
  0%, 100% { box-shadow: 0 12px 26px rgba(7, 148, 85, .26); }
  50% { box-shadow: 0 16px 34px rgba(7, 148, 85, .48); }
}

@keyframes buy-shine {
  0%, 28% { left: -35%; opacity: 0; }
  38% { opacity: 1; }
  62%, 100% { left: 118%; opacity: 0; }
}

@media (min-width: 720px) {
  .simple-store { padding: 28px; }
  .simple-media { border-radius: 22px; }
  .simple-purchase {
    width: min(100%, 470px);
    margin-inline: auto;
    padding: 18px 0;
  }
  .product-details-tile { padding: 26px; }
  .simple-buy { min-height: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  .simple-buy,
  .simple-buy::before {
    animation: none;
  }
}

@media print {
  .simple-purchase,
  .simple-footer,
  .buy-modal,
  .consent-banner {
    display: none !important;
  }
}

/* Dark storefront theme */
.site-body {
  --ink: #f5f7fb;
  --ink-2: #dbe4f0;
  --cream: #0a101c;
  --muted: #9aa9bd;
  --line: #26344a;
  --white: #111a2a;
  background: #070c15;
  color: #f5f7fb;
}

.site-body .simple-store {
  background:
    radial-gradient(circle at 12% -8%, rgba(49, 94, 251, .2), transparent 32%),
    radial-gradient(circle at 100% 42%, rgba(255, 90, 31, .1), transparent 28%),
    #070c15;
  overflow-x: hidden;
}

.site-body .simple-product { width: 100%; max-width: 680px; min-width: 0; }
.site-body .simple-carousel,
.site-body .simple-carousel-track,
.site-body .simple-carousel-slide { min-width: 0; }

.site-body .simple-image-headline {
  color: #f8fafc;
  text-shadow: 0 2px 24px rgba(49, 94, 251, .24);
}

.site-body .simple-media {
  border: 1px solid #2c3b54;
  background: #0d1625;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
}

.site-body .simple-media img,
.site-body .simple-media video {
  background: #0b1321;
}

.site-body .simple-price strong { color: #f8fafc; }
.site-body .simple-price del { color: #7f8da3; }
.site-body .simple-price-note { color: #9aa9bd; }
.site-body .simple-price-note s { color: #6e7d93; }

.site-body .product-details-tile {
  border: 1px solid #2b3a53;
  background:
    linear-gradient(145deg, rgba(22, 34, 54, .98), rgba(11, 19, 33, .98)) padding-box,
    linear-gradient(135deg, #315efb, #1f314d 42%, #ff6a35) border-box;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.site-body .product-details-tile h1 { color: #f8fafc; }
.site-body .product-details-tile h1::before {
  background: linear-gradient(180deg, #6f8cff, #ff7442);
  box-shadow: 0 4px 16px rgba(49, 94, 251, .35);
}

.site-body .product-details-list { color: #dce6f2; }
.site-body .product-details-list li::before {
  border-color: #16243a;
  background: linear-gradient(135deg, #6d8aff, #ff7442);
  box-shadow: 0 0 0 2px rgba(109, 138, 255, .24), 0 2px 8px rgba(0, 0, 0, .3);
}

.site-body .simple-footer { color: #8392a8; }
.site-body .simple-footer a { color: #aebbd0; }

/* Mixed image/video carousel */
.simple-carousel { position: relative; }
.simple-carousel-track { position: relative; overflow: hidden; }
.simple-carousel-slide { display: none; width: 100%; }
.simple-carousel-slide.is-active { display: block; animation: carousel-in .24s ease-out; }
.simple-carousel-slide picture { display: block; }
.simple-carousel-slide img,
.simple-carousel-slide video { aspect-ratio: 1 / 1; object-fit: contain; }
.simple-carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 52px;
  margin-top: -26px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 12px;
  background: rgba(7, 12, 21, .72);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.simple-carousel-arrow:hover { background: rgba(49, 94, 251, .86); transform: translateY(-1px); }
.simple-carousel-arrow:active { transform: scale(.94); }
.simple-carousel-arrow.is-prev { left: 12px; }
.simple-carousel-arrow.is-next { right: 12px; }
.simple-carousel-dots {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(7, 12, 21, .64);
  backdrop-filter: blur(8px);
}
.simple-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #8291a8;
  cursor: pointer;
}
.simple-carousel-dots button.is-active { width: 22px; border-radius: 99px; background: #fff; }
.simple-carousel-count {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(7, 12, 21, .64);
  color: #dce6f2;
  font-size: .72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

@keyframes carousel-in {
  from { opacity: .35; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .simple-carousel-slide.is-active { animation: none; }
  .simple-carousel-arrow { transition: none; }
}

/* Dark UPI payment flow */
.site-body .upi-page {
  background:
    radial-gradient(circle at 88% 3%, rgba(49, 94, 251, .38), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(255, 90, 31, .15), transparent 34%),
    #070c15;
}

.site-body .upi-card {
  border: 1px solid #2b3a53;
  background: linear-gradient(145deg, #17243a, #0b1321);
  color: #f8fafc;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.site-body .upi-card h1 { color: #f8fafc; }
.site-body .upi-payment-hint,
.site-body .upi-qr-label,
.site-body .upi-card > p,
.site-body .upi-page .privacy-note { color: #aab9cd; }
.site-body .upi-app-label { color: #91a5c2; }

.site-body .upi-payment-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 18px 0 20px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 91, 47, .86);
  border-radius: 14px;
  background: #1a1115;
  box-shadow: 0 0 0 1px rgba(255, 73, 31, .16), 0 14px 28px rgba(0, 0, 0, .28), 0 0 24px rgba(226, 51, 22, .14);
}

.site-body .upi-payment-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1080 / 570;
  border-radius: 10px;
  object-fit: cover;
}

.site-body .upi-choice-list {
  border-color: #2d3d56;
  background: #0d1726;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 12px 26px rgba(0, 0, 0, .22);
}

.site-body .upi-choice {
  border-bottom-color: #24334a;
  background: #0d1726;
  color: #f5f7fb;
}

.site-body .upi-choice:hover,
.site-body .upi-choice:focus-visible { background: #16243a; }
.site-body .upi-choice-copy small { color: #9dafc6; }
.site-body .upi-choice-radio { border-color: #566a86; background: #0d1726; }
.site-body .upi-choice:focus-visible .upi-choice-radio,
.site-body .upi-choice:hover .upi-choice-radio { border-color: #7b97ff; }
.site-body .upi-choice-icon.qr { border-color: #b7c5d8; background: #eff4fa; }
.site-body .upi-choice-icon.qr i { border-color: #4b5c72; background: #eff4fa; }
.site-body .upi-choice-icon.qr i:nth-child(2),
.site-body .upi-choice-icon.qr i:nth-child(3) { background: #4b5c72; }

.site-body .upi-qr-focus {
  border: 1px solid #2d3d56;
  background: #f8fafc;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.site-body .upi-confirm-button {
  min-height: 56px;
  border: 1px solid #5472a2;
  background: linear-gradient(135deg, #223b62, #132842);
  color: #f8fafc;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .08);
  font-size: .93rem;
}

.site-body .upi-confirm-button:hover,
.site-body .upi-confirm-button:focus-visible { background: linear-gradient(135deg, #2c4b7b, #19345a); }
.site-body .upi-back-button { color: #9db2ff; }
.site-body .upi-form input {
  border-color: #33455f;
  background: #0a1321;
  color: #f5f7fb;
}
.site-body .upi-form input::placeholder { color: #73859e; }
.site-body .upi-form small { color: #9dafc6; }

.site-body .upi-qr-icon { fill: #4b5c72; }

/* UPI verification and post-payment ZIP access use the same dark payment
   surface as the payment selector.  Keeping this scoped to the status page
   also prevents the storefront's light cards from leaking into this flow. */
.site-body .payment-verification-page {
  min-height: 100svh;
  padding: 28px 16px calc(44px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 88% 3%, rgba(49, 94, 251, .38), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(255, 90, 31, .15), transparent 34%),
    #070c15;
}

.site-body .payment-verification-page > .site-logo {
  justify-content: center;
  margin-bottom: 22px;
  color: #f8fafc;
}

.site-body .payment-status-card {
  width: min(100%, 580px);
  padding: 25px 19px 20px;
  border: 1px solid #2b3a53;
  border-radius: 24px;
  background: linear-gradient(145deg, #17243a, #0b1321);
  color: #f8fafc;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .06);
  text-align: left;
}

.site-body .payment-status-card .verification-head {
  display: grid;
  justify-items: center;
  gap: 13px;
  text-align: center;
}

.site-body .payment-status-card .verification-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #3d587d;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #294b77, #12243b 72%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 10px 24px rgba(0, 0, 0, .22);
}

.site-body .payment-status-card .verification-mark b {
  color: #f8fafc;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.site-body .payment-status-card .verification-mark .spinner {
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0;
  border-color: rgba(218, 230, 255, .22);
  border-top-color: #ff6a35;
}

.site-body .payment-status-card .eyebrow { margin: 0 0 7px; color: #ff8b62; }
.site-body .payment-status-card .verification-title,
.site-body .payment-status-card h2 { margin: 0; color: #f8fafc; }
.site-body .payment-status-card .verification-title { font-size: clamp(1.55rem, 7vw, 2.15rem); }
.site-body .payment-status-card .status-message {
  max-width: 460px;
  margin: 10px auto 0;
  color: #b7c6dc;
  font-size: .92rem;
  line-height: 1.58;
}

.site-body .payment-status-card .verification-window {
  margin: 22px 0 0;
  padding: 13px 14px;
  border: 1px solid #2d3d56;
  border-radius: 15px;
  background: rgba(10, 19, 33, .68);
}

.site-body .payment-status-card .verification-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #aab9cd;
  font-size: .72rem;
  font-weight: 800;
}

.site-body .payment-status-card .verification-window-top strong { color: #f5f7fb; font-size: .82rem; }
.site-body .payment-status-card .verification-progress-track {
  height: 7px;
  margin: 11px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #24334a;
}

.site-body .payment-status-card .verification-progress-track i {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6a35, #ffc15a, #5d87ff);
  box-shadow: 0 0 16px rgba(93, 135, 255, .55);
  animation: verification-progress 1.7s ease-in-out infinite alternate;
}

.site-body .payment-status-card .verification-window small { color: #91a5c2; font-size: .7rem; line-height: 1.42; }

.site-body .payment-status-card .verification-summary {
  display: grid;
  gap: 0;
  margin: 20px 0;
  padding: 0;
  border-top: 1px solid #2b3a53;
}

.site-body .payment-status-card .verification-summary div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #2b3a53;
}

.site-body .payment-status-card .verification-summary dt { color: #9dafc6; font-size: .76rem; font-weight: 750; }
.site-body .payment-status-card .verification-summary dd {
  max-width: 65%;
  margin: 0;
  overflow-wrap: anywhere;
  color: #f5f7fb;
  font-size: .82rem;
  font-weight: 850;
  text-align: right;
  text-transform: capitalize;
}

.site-body .payment-status-card[data-review-state="approved"] .status-label { color: #61e59b; }
.site-body .payment-status-card[data-review-state="failed"] .status-label { color: #ff9b8d; }
.site-body .payment-status-card[data-review-state="manual_review"] .status-label { color: #ffc15a; }
.site-body .payment-status-card[data-review-state="approved"] .verification-mark { border-color: #3b8b68; background: radial-gradient(circle at 35% 25%, #1e6c4a, #102b27 72%); }
.site-body .payment-status-card[data-review-state="approved"] .verification-mark b { color: #6cf0a7; }
.site-body .payment-status-card[data-review-state="failed"] .verification-mark { border-color: #914e50; background: radial-gradient(circle at 35% 25%, #6b3038, #30151d 72%); }
.site-body .payment-status-card[data-review-state="failed"] .verification-mark b { color: #ffae9e; }

.site-body .payment-status-card .verification-state-panel {
  padding: 18px 15px;
  border: 1px solid #2d3d56;
  border-radius: 17px;
  background: rgba(10, 19, 33, .7);
  text-align: center;
}

.site-body .payment-status-card .verification-state-panel h2 { font-size: 1.16rem; line-height: 1.3; }
.site-body .payment-status-card .status-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 13px;
  border: 1px solid transparent;
  font-size: 1.45rem;
}
.site-body .payment-status-card .status-icon.success { border-color: #2b8a62; background: #143c31; color: #65e89f; }
.site-body .payment-status-card .status-icon.danger { border-color: #914e50; background: #41202a; color: #ffae9e; }
.site-body .payment-status-card .status-icon.manual { border-color: #8a6932; background: #3e321b; color: #ffd16c; }
.site-body .payment-status-card .manual-message,
.site-body .payment-status-card .rejection-message,
.site-body .payment-status-card .manual-note {
  margin: 10px 0 0;
  color: #b7c6dc;
  font-size: .84rem;
  line-height: 1.55;
}
.site-body .payment-status-card .manual-note { color: #91a5c2; font-size: .76rem; }
.site-body .payment-status-card .manual-review-form {
  display: grid;
  gap: 10px;
  margin: 18px 0 13px;
  padding: 14px;
  border: 1px solid rgba(255, 144, 103, .36);
  border-radius: 14px;
  background: rgba(67, 31, 28, .28);
  text-align: left;
}
.site-body .payment-status-card .manual-review-form label { color: #f6f8fb; font-size: .82rem; font-weight: 760; }
.site-body .payment-status-card .manual-review-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #52677f;
  border-radius: 11px;
  background: #0a1424;
  color: #f8fafc;
}
.site-body .payment-status-card .manual-review-form input:focus { outline: 2px solid rgba(255, 112, 67, .55); outline-offset: 2px; }
.site-body .payment-status-card .manual-review-form p { margin: 0; color: #afbed1; font-size: .74rem; line-height: 1.45; }
.site-body .payment-status-card .manual-review-form .button { width: 100%; }
.site-body .payment-status-card .fresh-proof-link { display: inline-flex; margin-top: 2px; }

.site-body .payment-status-card .recovery-box {
  margin: 17px 0;
  padding: 15px;
  border-color: #ff7442;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(68, 38, 30, .72), rgba(23, 26, 37, .88));
}
.site-body .payment-status-card .recovery-box > span { color: #ffc7a9; }
.site-body .payment-status-card .recovery-box code { color: #f8fafc; }
.site-body .payment-status-card .recovery-box p { color: #aab9cd; }
.site-body .payment-status-card .button-row { justify-content: center; }
.site-body .payment-status-card .button.primary {
  flex: 1 1 180px;
  border-color: rgba(104, 239, 168, .4);
  background: linear-gradient(135deg, #078b56, #10b96e);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 148, 85, .25);
}
.site-body .payment-status-card .button.secondary { flex: 1 1 145px; border-color: #4a607f; background: transparent; color: #f1f5fb; }
.site-body .payment-status-card .micro-trust { margin-top: 16px; color: #8fa3be; line-height: 1.5; }

@keyframes verification-progress {
  from { transform: translateX(-22%); opacity: .7; }
  to { transform: translateX(120%); opacity: 1; }
}

@media (max-width: 390px) {
  .site-body .payment-status-card { padding: 22px 15px 18px; }
  .site-body .payment-status-card .verification-summary dd { max-width: 60%; font-size: .77rem; }
  .site-body .payment-status-card .button-row { gap: 9px; }
}

/* Premium product details and customer feedback */
.site-body .product-best-seller {
  padding-top: 46px;
  border-color: #584826;
  background:
    linear-gradient(145deg, rgba(29, 29, 24, .98), rgba(13, 19, 31, .98)) padding-box,
    linear-gradient(135deg, #ffd166, #7b6331 44%, #315efb 100%) border-box;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 209, 102, .08), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.best-seller-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 232, 160, .54);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0a8, #dcae38);
  color: #392400;
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .22);
}

.best-seller-badge i { color: #9b5d00; font-size: .78rem; font-style: normal; }

.product-details-kicker,
.customer-reviews-kicker {
  display: block;
  margin-bottom: 7px;
  color: #e5bd59;
  font-size: .61rem;
  font-weight: 950;
  letter-spacing: .14em;
}

.product-best-seller h1 { margin-bottom: 18px; }
.product-best-seller h1::before { background: linear-gradient(180deg, #ffe086, #d99825); }

.customer-reviews {
  margin: 23px 0 2px;
  padding: 0;
}

.customer-reviews-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 4px 16px;
}

.customer-reviews-heading h2 {
  margin: 0;
  color: #f8fafc;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -.025em;
}

.customer-review-count {
  flex: 0 0 auto;
  margin-top: 4px;
  padding: 5px 8px;
  border: 1px solid rgba(111, 140, 255, .34);
  border-radius: 999px;
  background: rgba(49, 94, 251, .13);
  color: #b9c8ff;
  font-size: .64rem;
  font-weight: 850;
}

.customer-reviews-grid { display: grid; gap: 18px; }

.customer-review-card {
  padding: 21px 22px 20px;
  border: 1px solid #303039;
  border-radius: 20px;
  background: linear-gradient(145deg, #161616, #0f1012);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 14px 30px rgba(0, 0, 0, .18);
}

.customer-review-top {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.customer-review-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #40234a, #201225);
  color: #f89cff;
  font-size: .95rem;
  font-weight: 950;
}

.customer-review-top strong { display: block; color: #f6f3ff; font-size: 1rem; line-height: 1.2; }
.customer-review-top small { display: block; margin-top: 3px; color: #aaa4c4; font-size: .73rem; font-weight: 650; }

.customer-review-stars { color: #ffae19; font-size: .84rem; letter-spacing: 1px; white-space: nowrap; }

.customer-review-plan {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(207, 70, 237, .42);
  border-radius: 999px;
  background: rgba(119, 21, 135, .18);
  color: #f06cff;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .045em;
}

.customer-review-card p {
  margin: 13px 0 0;
  color: #c4bed3;
  font-size: .92rem;
  font-weight: 620;
  line-height: 1.58;
}

.customer-review-verified {
  display: inline-block;
  margin-top: 11px;
  color: #57e38e;
  font-size: .74rem;
  font-weight: 900;
}

/* Keep the same phone-sized storefront composition on wide desktop screens. */
@media (min-width: 640px) {
  .site-body .simple-store {
    width: min(100%, 568px);
    margin: 0 auto;
    padding: 16px 12px 42px;
  }

  .site-body .simple-product {
    width: 100%;
    max-width: none;
  }
}
